projects
/
ostree.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
633da1e
)
triggers: Fix comparison function
author
Colin Walters
<walters@verbum.org>
Mon, 20 Feb 2012 02:10:59 +0000
(21:10 -0500)
committer
Colin Walters
<walters@verbum.org>
Mon, 20 Feb 2012 02:10:59 +0000
(21:10 -0500)
src/triggers/ostree-run-triggers.c
patch
|
blob
|
history
diff --git
a/src/triggers/ostree-run-triggers.c
b/src/triggers/ostree-run-triggers.c
index 7145cb6aadc7782d2a8b10976d4504373f060558..e533915f3994acf2cb859292bfc9fadf1bd72a07 100644
(file)
--- a/
src/triggers/ostree-run-triggers.c
+++ b/
src/triggers/ostree-run-triggers.c
@@
-132,8
+132,8
@@
static int
compare_files_by_basename (gconstpointer ap,
gconstpointer bp)
{
- GFile *a =
(GFile
*)ap;
- GFile *b =
(GFile
*)ap;
+ GFile *a =
*(GFile*
*)ap;
+ GFile *b =
*(GFile*
*)ap;
char *name_a, *name_b;
int c;